type github.com/jackc/pgx/v5/pgtype.uint64Wrapper

12 uses

	github.com/jackc/pgx/v5/pgtype (current package)
		builtin_wrappers.go#L201: type uint64Wrapper uint64
		builtin_wrappers.go#L203: func (w uint64Wrapper) SkipUnderlyingTypePlan() {}
		builtin_wrappers.go#L205: func (w *uint64Wrapper) ScanInt64(v Int8) error {
		builtin_wrappers.go#L214: 	*w = uint64Wrapper(v.Int64)
		builtin_wrappers.go#L219: func (w uint64Wrapper) Int64Value() (Int8, error) {
		builtin_wrappers.go#L227: func (w *uint64Wrapper) ScanNumeric(v Numeric) error {
		builtin_wrappers.go#L241: 	*w = uint64Wrapper(bi.Uint64())
		builtin_wrappers.go#L246: func (w uint64Wrapper) NumericValue() (Numeric, error) {
		pgtype.go#L623: 		return &wrapUint64ScanPlan{}, (*uint64Wrapper)(target), true
		pgtype.go#L744: 	return plan.next.Scan(src, (*uint64Wrapper)(dst.(*uint64)))
		pgtype.go#L1480: 		return &wrapUint64EncodePlan{}, uint64Wrapper(value), true
		pgtype.go#L1603: 	return plan.next.Encode(uint64Wrapper(value.(uint64)), buf)